home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / A / 4D Dial Procedure < prev    next >
Text File  |  1987-07-01  |  931b  |  28 lines

  1. Small procedure to dial a phone number from the current record in Fourth Dimension.  Assumes the phone number is in the field [Customers]PhoneNo, and that a button, named Dialer, has been pressed.  This is a "quick and dirty" routine.  Full user interface and error-checking will be posted later with the sample database "The Real Computer Store."  Stay tuned....
  2.  
  3.  
  4. If (Dialer=1)
  5.     SET CHANNEL(1;94+3072+16384+0)
  6.     dialstring:="ATDT"
  7.     
  8.     If (Length([Customers]PhoneNo)>8) `Allows for a dash in phone number
  9.       dialstring:=dialstring+"1"
  10.     End if 
  11.     
  12.     dialstring:=dialstring+[Customers]PhoneNo+Char(13)
  13.     SEND PACKET(dialstring)
  14.     ALERT("Press OK when OK to hang up")
  15.     dialstring:="ATH"+Char(13)
  16.     SEND PACKET(dialstring)
  17.   End if 
  18.  
  19. Brought to you by:
  20.  
  21. Deirdre L. Maloy
  22. Versatile Information Systems
  23. (a division of Insanely Great Software)
  24. 3001 Redhill, Suite 6-219
  25. Costa Mesa  CA  92626
  26. (714) 754-0647
  27.  
  28.